home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_02 / 9n02072a < prev    next >
Text File  |  1990-12-16  |  406b  |  24 lines

  1.  
  2. stddef.h
  3.    typedef unsigned int size_t;
  4.  
  5. stdlib.h
  6. /* n is the largest possible randomly generated number 
  7. */
  8.    #define RAND_MAX  n
  9.  
  10. limits.h
  11. /* n is the largest possible value for an int variable 
  12. */
  13.    #define UINT_MAX  n
  14.  
  15. float.h
  16. /* n is the largest possible value for a double variable 
  17. */
  18.    #define DBL_MAX   n
  19.  
  20. string.h
  21.    extern char  *strdup();
  22.    extern int   strcmp();
  23.  
  24.